SF Symbols to SVGs. Period.
Apple SF Symbols is an icon set with more thant 6,000 symbols. Unfortunately, this are not available on the web. This tool solve this.
Warning
This tool requires you to have the SF Pro Text font installed on your system or in a custom directory.
Tip
SF Symbols to SVG can be coupled with React from SVG to generate React components from SVGs.
SF Symbols to SVG is available as a CLI tool:
npx sf-symbols-svg --help
--size, -s Font size for symbols (default: 24)
--padding, -p Padding in pixels (default: 2)
--weight, -w Font weights to include (default: regular)
Can specify multiple: -w regular -w bold
--output, -o Output directory (default: ./sf-symbols-svgs)
--fonts-dir, -f Directory containing SF Pro Text fonts (default: /Library/Fonts)
--sf-version SF Symbols version to use (default: latest)
--sources-dir Directory containing SF Symbols data files (default: ./sources)
--icons-list Path to a file containing a list of icons to process, one name per line (optional)
--help, -h Show this help message
--version Show version of SF Symbols supported by this tool.
Note
SF Symbols to SVG will always try to use the latest version of SF Symbols supported by this tool.
You can check in the sources/
directory to see which versions are supported.
# Generate SVGs for the latest version of SF Symbols, in 24x24 SVGs with 2px padding, in ./svg-symbols-svgs folder
npx sf-symbols-svg --weight all
# Generate SVGs with larger size and padding
sf-symbols-svg --size 32 --padding 4
# Generate SVGs for multiple weights
sf-symbols-svg --weight bold --weight black
# Specify custom output directory
sf-symbols-svg --output ./my-icons
# Specify a different SF Symbols version (if available)
sf-symbols-svg --sf-version 6.0
# Combine options
sf-symbols-svg --size 48 --padding 8 --weight light --weight regular --weight bold --output ./custom-icons --fonts-dir /Users/moox/Library/Fonts
# Process only specific icons
sf-symbols-svg --icons-list /path/to/your/icons-list.txt
This tool automatically detects supported SF Symbols versions by scanning the sources/
directory. Each version requires its own data files (symbols.txt
and names.txt
) which are already included in the repository for some versions.
The tool will automatically use the most recent version as the default, but you can specify a different version using the --sf-version
option. If no matching versions are detected in the sources/
directory, the tool will display an error message.
If you want to use a different version (when new SF Symbols versions are released):
- Create a new directory in
sources/{version}/
(example:sources/7.0/
) - Extract the character mappings:
- Get the SF Symbols app and open the app
- Select all symbols (
cmd + A
orEdit
>Select All
) - Right click on the selection, and press
Copy all {x} symbols
- Paste the symbols into a file at
sources/{version}/symbols.txt
- Right click again on the selection, and press
Copy all {x} names
- Paste the names into a file at
sources/{version}/names.txt
That's it! The tool will automatically detect the new version and use it as the default (since it's the most recent).
If you want to use a different directory for your SF Symbols data files, you can specify it with the --sources-dir
option:
sf-symbols-svg --sources-dir /path/to/your/sources
The custom sources directory must follow the same structure as the default one:
sources/
├── 6.0/
│ ├── symbols.txt
│ └── names.txt
├── 6.1/
│ ├── symbols.txt
│ └── names.txt
└── ...
The tool will automatically detect available versions from the provided directory and use the most recent one as the default.
If you want to process only a limited subset of icons, you can create a text file with one icon name per line and use the --icons-list
option:
sf-symbols-svg --icons-list /path/to/your/icons-list.txt
Example of an icons list file:
moon.stars.fill
puzzlepiece
amplifier
figure.hiking
This is particularly useful for:
- Testing the tool with a smaller set of icons
- Generating only the specific icons you need for your project
- Reducing processing time when you only need a few symbols
Warning
SF Symbols requires specific SF Pro Text font versions that match the SF Symbols version you're using. If the font versions don't match, the symbols may not render correctly.
Caution
The Apple SF Symbols app will display a warning at the top of the application if your installed fonts don't match the expected version. Make sure to check this warning and install the appropriate font version from Apple's website.
To use this script, you need to have the SF Pro Text fonts installed on your system or in a custom directory.
If you have SF Pro Text fonts installed on your system (typically in /Library/Fonts
), the script will automatically find and use them. This is the default behavior.
# Use fonts from the default location (/Library/Fonts)
sf-symbols-svg
If your fonts are installed in a different location, you can specify it with the --fonts-dir
option:
# Use fonts from a custom location
sf-symbols-svg --fonts-dir ~/Library/Fonts
If you don't have the fonts installed:
- Download SF Pro font from Apple's website.
- Install the font using the provided installer.
- The fonts will be installed in
/Library/Fonts
by default.
Note
For legal reasons, this repository does not include the SF Pro Text font files. You must download and install them from Apple's website. Make sure to use font versions that are compatible with the SF Symbols version you are using (check for warnings in the SF Symbols app).